home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / ctlhtmlc / introdia.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-06  |  1.7 KB  |  52 lines

  1. /*---------------------------------------------------------------------------*\
  2.  | IntroDialog.h - CtlHTML(tm) Control Library Test Program                  |
  3.  |                 Windmill Point Software, Alburg, VT 05440                 |
  4.  |                 Copyright (c) 1999, Windmill Point Software               |
  5.  |                 All Rights Reserved.                                      |
  6. \*---------------------------------------------------------------------------*/
  7.  
  8. #if !defined(AFX_INTRODIALOG_H__0562D683_DF10_11D2_8171_A0174FC10000__INCLUDED_)
  9. #define AFX_INTRODIALOG_H__0562D683_DF10_11D2_8171_A0174FC10000__INCLUDED_
  10.  
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CIntroDialog dialog
  17.  
  18. class CIntroDialog : public CDialog
  19. {
  20. // Construction
  21. public:
  22.     CIntroDialog(CWnd* pParent = NULL);   // standard constructor
  23.  
  24. // Dialog Data
  25.     //{{AFX_DATA(CIntroDialog)
  26.     enum { IDD = IDD_INTRO };
  27.     BOOL    m_ShowIntro;
  28.     //}}AFX_DATA
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CIntroDialog)
  33.     protected:
  34.     virtual BOOL OnInitDialog();
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CIntroDialog)
  43.    afx_msg void OnActivate (UINT nState, CWnd* pWndOther, BOOL bMinimized);
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. // {{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50.  
  51. #endif // !defined(AFX_INTRODIALOG_H__0562D683_DF10_11D2_8171_A0174FC10000__INCLUDED_)
  52.